home *** CD-ROM | disk | FTP | other *** search
/ Aminet 4 / Aminet 4 - November 1994.iso / aminet / comm / news / tin122.lha / tin < prev    next >
AmigaDOS Script File  |  1994-06-23  |  2KB  |  53 lines

  1. .KEY Options/F
  2.  
  3. ; $VER: Amiga_TIN_Startup 1.1 (23.6.94)
  4. ;
  5. ; Simple startup for TIN, just replace the following variables with
  6. ; your settings.
  7.  
  8.  
  9. Set USERNAME jellis          ; your username
  10.  
  11. Set REALNAME "Jacob Ellis"   ; your real name
  12.  
  13. Set NODENAME nah       ; This should be just your node name, not the
  14.                        ; entire domain.
  15.  
  16. Set HOME    USR:jellis   ; wherever you want your news & index files
  17.                          ; stored
  18.  
  19. Set EDITOR  "ed -STICKY "    ; your editor of choice
  20.                              ; the editor MUST not detach from the CLI
  21.                              ; my editor of choice is CED, the -STICKY
  22.                              ; flag prevents CED from detaching
  23.  
  24. ;Set COLUMNS 80              ; Screen columns, for remote users
  25. ;Set LINES 24                ; Screen lines, for remote users
  26.  
  27. ;Set TIN_INDEX UUNEWS:       ; Where to store index files, if not
  28.                              ; specified they'll go into $HOME/.tin
  29.  
  30.  
  31.  
  32. ; If your system does not automatically support news active files
  33. ; (like DUUCP) then you need to create one for TIN.
  34. ; If you have an automatic active file, you can delete the following
  35. ; three lines.
  36.  
  37. ActiveD                      ; create a new active file
  38. Delete UULIB:Active quiet    ; Delete old active file
  39. Rename UULIB:newsactive UULIB:Active  ; insert new active file
  40.  
  41. tin.exe <Options>            ; start tin itself
  42.  
  43.  
  44. UnSet USERNAME               ; cleanup local enviroment
  45. UnSet REALNAME
  46. UnSet NODENAME
  47.  
  48. UnSet HOME
  49.  
  50. UnSet EDITOR
  51.  
  52. UnSetENV TIN_GROUPS           ; this is set by ActiveD for TIN
  53.